_gtk_container_queue_resize() is a private function and probably
shouldn't have even been used in 1999 when this call was originally
added.
}
gtk_widget_size_allocate (widget, &allocation);
- _gtk_container_queue_resize (GTK_CONTAINER (widget));
+ gtk_widget_queue_resize (widget);
g_return_if_fail (!gtk_widget_get_realized (widget));
}
allocation.height = MAX (allocation.height, h);
gtk_widget_size_allocate (widget, &allocation);
- _gtk_container_queue_resize (GTK_CONTAINER (widget));
+ gtk_widget_queue_resize (widget);
g_return_if_fail (!_gtk_widget_get_realized (widget));
}
priv->configure_notify_received = TRUE;
- _gtk_container_queue_resize (GTK_CONTAINER (widget));
+ gtk_widget_queue_resize (widget);
return TRUE;
}